home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SCRIB4.PAK / CHILDFRM.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  55 lines

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13.  
  14. class CChildFrame : public CMDIChildWnd
  15. {
  16.     DECLARE_DYNCREATE(CChildFrame)
  17. public:
  18.     CChildFrame();
  19.  
  20. // Attributes
  21. protected:
  22.     CSplitterWnd    m_wndSplitter;
  23. public:
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CChildFrame)
  31.     public:
  32.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33.     protected:
  34.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. public:
  39.     virtual ~CChildFrame();
  40. #ifdef _DEBUG
  41.     virtual void AssertValid() const;
  42.     virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44.  
  45. // Generated message map functions
  46. protected:
  47.     //{{AFX_MSG(CChildFrame)
  48.         // NOTE - the ClassWizard will add and remove member functions here.
  49.         //    DO NOT EDIT what you see in these blocks of generated code!
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.